ts-toolbelt
Higher Type Safety for TypeScript. A collection of useful types.
๐ Read Docs
ยท
๐ฎ View Demo
ยท
๐ Report Bug
ยท
๐ฉ Request Feature
ยท
๐ค Ask Questions
Table of Contents
๐ About
"Avoid bugs by writing high quality types"
ts-toolbelt ships utility types that provide simple ways to update, change, and compute TypeScript types.
It offers unique dynamic features, allowing you to write type-safe software more easily and in less time than you do today.
Its programmatic API brings new capabilities to TypeScript with +200 tested type utilities. This makes it the largest and the most reliable type collection out there.
It uses the type system itself for TypeScript to compute complex types. So its API exposes types that trade CPU & RAM for higher type safety.
Goals
- Answer the question to "How can I do this in TypeScript?"
- Provide a programmatic standard API for the type system
- Promote type evolution/reusability within your codebase
- Software that is more type-safe, flexible, and robust
- Bring a whole new set of extra features to TypeScript
- Extensively tested type utilities for maximum type safety
- This package aims to be the home of all utility types
- Answer questions about types and share knowledge
You'll find all the types you can ever need in this single and well organized package.
๐ฉ Features
Here's some of the most useful utilities:
TIP
If you don't find the type you are looking for, you are welcome to open a feature request!
๐ Getting Started
Prerequisites
Lowest TypeScript support starts at v3.5
npm install typescript@^3.8.0 --save-dev
For best results, add this to your tsconfig.json
{
"compilerOptions": {
"strictNullChecks": true,
"strict": true,
"lib": [
"es2015",
],
}
}
Installation
npm install ts-toolbelt --save
Hello World
import {Object} from "ts-toolbelt"
type merge = Object.Merge<{name: string}, {age?: number}>
type optional = Object.Optional<{id: number, name: string}, "name"}>
TIP
You can also grab the demo over here.
You can level-up, and re-code this library from scratch.
Where to start
To get you started, we recommend that you visit the documentation of the following essential tools.
TIP
Add something to this list
The documentation is complete but it needs more examples. So feel free to ask for examples.
Imports
The project is organized around TypeScript's main concepts:
| | | | | |
---|
Any | Boolean | Class | Function | Iteration | List |
Number | Object | Object.P | String | Union | Test |
TIP
How to choose categories? Match your type with them.
There are many ways to import the types into your project:
-
Explicit
import {Any, Boolean, Class, Function, Iteration, List, Number, Object, String, Union} from "ts-toolbelt"
-
Compact
import {A, B, C, F, I, L, N, O, S, U} from "ts-toolbelt"
-
Portable
import tb from "ts-toolbelt"
You can also import our non-official API from the community:
import {Community} from "ts-toolbelt"
TIP
The community API is for our community to publish useful types that don't see fit in the standard API.
Internal Docs
If you're interested to learn how the internals work, this tutorial will get you on track to start writing your own types.
Access older docs at https://millsp.github.io/ts-toolbelt/version/
EXAMPLE
https://millsp.github.io/ts-toolbelt/4.2.1/
In this wiki, you will find some extra resources for your learning, and understanding.
Are you missing something? Participate to the open-wiki by posting your questions.
Stay up to date with the latest announcements with this regular digest of important changes.
๐ Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. There are many ways to contribute to the project:
Codebase
Pull Requests
-
Read the tutorial
-
Fork the project
-
Clone your fork
-
Create a pr/feature branch
git checkout -b pr/CoolFeature
-
Commit your changes
You must follow the conventional commit to be able to commit
git commit -m "feat(name): Added this CoolFeature"
-
Run the tests
-
Push your changes
npm run release -- --no-tags
-
Open a pull request
๐ Running tests
For this project
To run the lint
& type
tests, simply run:
npm test
For your project
Want to test your own types? Let's get started:
import {Number, Test} from "ts-toolbelt"
const {checks, check} = Test
checks([
check<Number.Plus<"1", "30">, "31", Test.Pass>(),
check<Number.Plus<"5", "-3">, "2", Test.Pass>(),
])
TIP
Place it in a file that won't be executed, it's just for TypeScript to test types.
Continuous Integration
The releases are done with Travis CI in stages & whenever a branch or PR is pushed:
- Tests are run with
npm test
- Tests against DefinitelyTyped
- Releases to npm@[branch-name]
If you wrote tests & would like your project to be tested too, please open an issue.
๐ง Compatibility
The project is maintained to adapt to the constant changes of TypeScript:
ts-toolbelt | typescript |
---|
6.x.x | ^3.7.x |
4.x.x | ^3.5.x |
2.x.x | ^3.5.x |
3.x.x | ^3.5.x |
1.x.x | ~3.5.x |
Major version numbers will upgrade whenever TypeScript had breaking changes (it happened that TS had breaking changes on minor versions). Otherwise, the release versions will naturally follow the semantic versioning.
Sponsored issues have higher priority over non-critical issues.
You can either request a new feature or a bug fix, and then fund it.
The money will be transparently split with an issue's assignees.
๐ฎ What's next
-
Automated performance tests
npx tsc --noEmit --extendedDiagnostics
-
Need to write more examples
๐ Acknowledgements
Many, many thanks to all the contributors and:
๐ Friendly Projects
eledoc
- ๐ A material dark theme for TypeDocutility-types
- Collection of utility types, complementing TypeScript built-in mapped types and aliases
License